home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gscolor1.h < prev    next >
C/C++ Source or Header  |  1994-09-13  |  2KB  |  45 lines

  1. /* Copyright (C) 1993 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gscolor1.h */
  20. /* Client interface to Level 1 extended color facilities */
  21. /* Requires gscolor.h */
  22.  
  23. #ifndef gscolor1_INCLUDED
  24. #  define gscolor1_INCLUDED
  25.  
  26. /* Color and gray interface */
  27. int    gs_setcmykcolor(P5(gs_state *, floatp, floatp, floatp, floatp)),
  28.     gs_currentcmykcolor(P2(const gs_state *, float [4])),
  29.     gs_setblackgeneration(P2(gs_state *, gs_mapping_proc)),
  30.     gs_setblackgeneration_remap(P3(gs_state *, gs_mapping_proc, bool));
  31. gs_mapping_proc    gs_currentblackgeneration(P1(const gs_state *));
  32. int    gs_setundercolorremoval(P2(gs_state *, gs_mapping_proc)),
  33.     gs_setundercolorremoval_remap(P3(gs_state *, gs_mapping_proc, bool));
  34. gs_mapping_proc    gs_currentundercolorremoval(P1(const gs_state *));
  35. /* Transfer function */
  36. int    gs_setcolortransfer(P5(gs_state *, gs_mapping_proc /*red*/,
  37.             gs_mapping_proc    /*green*/, gs_mapping_proc /*blue*/,
  38.             gs_mapping_proc    /*gray*/)),
  39.     gs_setcolortransfer_remap(P6(gs_state *, gs_mapping_proc /*red*/,
  40.             gs_mapping_proc    /*green*/, gs_mapping_proc /*blue*/,
  41.             gs_mapping_proc    /*gray*/, bool));
  42. void    gs_currentcolortransfer(P2(const gs_state *, gs_mapping_proc [4]));
  43.  
  44. #endif                    /* gscolor1_INCLUDED */
  45.